home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / gdevm16.c < prev    next >
C/C++ Source or Header  |  1996-04-28  |  5KB  |  150 lines

  1. /* Copyright (C) 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevm16.c */
  20. /* 16-bit-per-pixel "memory" (stored bitmap) device */
  21. #include "memory_.h"
  22. #include "gx.h"
  23. #include "gxdevice.h"
  24. #include "gxdevmem.h"            /* semi-public definitions */
  25. #include "gdevmem.h"            /* private definitions */
  26.  
  27. #undef chunk
  28. #define chunk byte
  29.  
  30. /* The 16 bits are divided 5 for red, 6 for green, and 5 for blue. */
  31. /* Note that the bits must always be kept in big-endian order. */
  32.  
  33. /* Procedures */
  34. declare_mem_map_procs(mem_true16_map_rgb_color, mem_true16_map_color_rgb);
  35. declare_mem_procs(mem_true16_copy_mono, mem_true16_copy_color, mem_true16_fill_rectangle);
  36.  
  37. /* The device descriptor. */
  38. const gx_device_memory far_data mem_true16_device =
  39.   mem_device("image16", 16, 0,
  40.     mem_true16_map_rgb_color, mem_true16_map_color_rgb,
  41.     mem_true16_copy_mono, mem_true16_copy_color, mem_true16_fill_rectangle,
  42.     gx_no_strip_copy_rop);
  43.  
  44. /* Map a r-g-b color to a color index. */
  45. private gx_color_index
  46. mem_true16_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  47.   gx_color_value b)
  48. {    return ((r >> (gx_color_value_bits - 5)) << 11) +
  49.         ((g >> (gx_color_value_bits - 6)) << 5) +
  50.         (b >> (gx_color_value_bits - 5));
  51. }
  52.  
  53. /* Map a color index to a r-g-b color. */
  54. private int
  55. mem_true16_map_color_rgb(gx_device *dev, gx_color_index color,
  56.   gx_color_value prgb[3])
  57. {    ushort value = color >> 11;
  58.     prgb[0] = ((value << 11) + (value << 6) + (value << 1) + (value >> 4)) >> (16 - gx_color_value_bits);
  59.     value = (color >> 6) & 0x7f;
  60.     prgb[1] = ((value << 10) + (value << 4) + (value >> 2)) >> (16 - gx_color_value_bits);
  61.     value = color & 0x3f;
  62.     prgb[2] = ((value << 11) + (value << 6) + (value << 1) + (value >> 4)) >> (16 - gx_color_value_bits);
  63.     return 0;
  64. }
  65.  
  66. /* Convert x coordinate to byte offset in scan line. */
  67. #undef x_to_byte
  68. #define x_to_byte(x) ((x) << 1)
  69.  
  70. /* Fill a rectangle with a color. */
  71. private int
  72. mem_true16_fill_rectangle(gx_device *dev,
  73.   int x, int y, int w, int h, gx_color_index color)
  74. {
  75. #if arch_is_big_endian
  76. #  define color16 ((ushort)color)
  77. #else
  78.     ushort color16 = ((uint)(byte)color << 8) + ((ushort)color >> 8);
  79. #endif
  80.     declare_scan_ptr(dest);
  81.     fit_fill(dev, x, y, w, h);
  82.     setup_rect(dest);
  83.     while ( h-- > 0 )
  84.        {    ushort *pptr = (ushort *)dest;
  85.         int cnt = w;
  86.         do { *pptr++ = color16; } while ( --cnt > 0 );
  87.         inc_ptr(dest, draster);
  88.        }
  89.     return 0;
  90. #undef color16
  91. }
  92.  
  93. /* Copy a monochrome bitmap. */
  94. private int
  95. mem_true16_copy_mono(gx_device *dev,
  96.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  97.   int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
  98. {
  99. #if arch_is_big_endian
  100. #  define zero16 ((ushort)zero)
  101. #  define one16 ((ushort)one)
  102. #else
  103.     ushort zero16 = ((uint)(byte)zero << 8) + ((ushort)zero >> 8);
  104.     ushort one16 = ((uint)(byte)one << 8) + ((ushort)one >> 8);
  105. #endif
  106.     const byte *line;
  107.     int first_bit;
  108.     declare_scan_ptr(dest);
  109.     fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  110.     setup_rect(dest);
  111.     line = base + (sourcex >> 3);
  112.     first_bit = 0x80 >> (sourcex & 7);
  113.     while ( h-- > 0 )
  114.        {    register ushort *pptr = (ushort *)dest;
  115.         const byte *sptr = line;
  116.         register int sbyte = *sptr++;
  117.         register int bit = first_bit;
  118.         int count = w;
  119.         do
  120.            {    if ( sbyte & bit )
  121.                {    if ( one != gx_no_color_index )
  122.                   *pptr = one16;
  123.                }
  124.             else
  125.                {    if ( zero != gx_no_color_index )
  126.                   *pptr = zero16;
  127.                }
  128.             if ( (bit >>= 1) == 0 )
  129.                 bit = 0x80, sbyte = *sptr++;
  130.             pptr++;
  131.            }
  132.         while ( --count > 0 );
  133.         line += sraster;
  134.         inc_ptr(dest, draster);
  135.        }
  136.     return 0;
  137. #undef zero16
  138. #undef one16
  139. }
  140.  
  141. /* Copy a color bitmap. */
  142. private int
  143. mem_true16_copy_color(gx_device *dev,
  144.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  145.   int x, int y, int w, int h)
  146. {    fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
  147.     mem_copy_byte_rect(mdev, base, sourcex, sraster, x, y, w, h);
  148.     return 0;
  149. }
  150.